home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wsc4c21.zip / TERM32._W_ < prev    next >
Text File  |  1997-05-22  |  1KB  |  45 lines

  1. #
  2. # Watcom makefile for TERM [Win32]
  3. # Requires WSC32.LIB & MIO32.LIB
  4. #
  5. # To use: "wmake -f term32._W_"
  6. #
  7.  
  8. CCFLAGS = -w4 -zq -otexan -d2 -3s -bt=nt -mf -DWIN32
  9.  
  10. term.exe : about.obj accept.obj line.obj paint.obj term.obj sioerror.obj xydriv32.lib &
  11.            ansi.obj config.obj menu.obj term.def wsc32.lib mio32.lib term.res
  12.     wlink d all SYS nt_win op m libr mio32.lib libr wsc32.lib libr xydriv32.lib &
  13.           op maxe=25 op q op symf @term32.lnk
  14.     wrc -q -ad term.res term.exe
  15.  
  16. about.obj : about.c about.h
  17.     wcc386 about.c $(CCFLAGS)
  18.  
  19. accept.obj : accept.c accept.h
  20.     wcc386 accept.c $(CCFLAGS)
  21.  
  22. ansi.obj: ansi.c ansi.h
  23.    wcc386 ansi.c $(CCFLAGS)
  24.    
  25. menu.obj : menu.c menu.h
  26.     wcc386 menu.c $(CCFLAGS)
  27.  
  28. config.obj : config.c config.h
  29.     wcc386 config.c $(CCFLAGS)
  30.  
  31. line.obj : line.c line.h
  32.     wcc386 line.c  $(CCFLAGS)
  33.  
  34. paint.obj : paint.c paint.h
  35.     wcc386 paint.c $(CCFLAGS)
  36.  
  37. term.obj : term.c term.h
  38.     wcc386 term.c $(CCFLAGS)
  39.  
  40. sioerror.obj : sioerror.c sioerror.h
  41.     wcc386 sioerror.c $(CCFLAGS)
  42.  
  43. term.res : term.rc
  44.     wrc term.rc -bt=nt -q -ad -r -fo=term.res
  45.